home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Personal Computer World 2009 February
/
PCWFEB09.iso
/
Software
/
Resources
/
Audio, Video & Photo
/
MediaCoder 0.6.2.4200
/
MediaCoder-0.6.2.4200.exe
/
htdocs
/
start.7z
/
main.js
< prev
next >
Wrap
Text File
|
2007-03-23
|
372b
|
14 lines
function Wiki(title)
{
window.location = "http://mediacoder.sourceforge.net/wiki/index.php?title=" + title;
}
function GetUrlArg(name)
{
var idx=document.location.href.indexOf(name+'=');
if (idx<=0) return null;
var argstr=document.location.href.substring(idx+name.length+1);
idx = argstr.indexOf('&');
return idx>=0?argstr.substring(0, idx):argstr;
}